* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
font-family: my font, sans-serif;
}
@font-face {
  font-family: 'my font';
  src: url(fonts/Quicksand-Regular.ttf);
}
body {
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #fff;
    box-sizing: border-box;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}


.header {
    background: linear-gradient(135deg, #f8c8d4 0%, #f5b2c4 100%);
    padding: 60px 0;
    text-align: center;
}

.logo {
    margin-bottom: 20px;
}

.logo-image {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #f8c8d4;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header h1 {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
    font-weight: 300;
}

.header-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}


.owner-section {
    padding: 80px 0;
    background-color: #fff;
}

.owner-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.owner-image {
    flex: 0 0 300px;
}

.owner-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.owner-info {
    flex: 1;
}

.owner-info h2 {
    font-size: 2.2rem;
    color: #e74c3c;
    margin-bottom: 10px;
    font-weight: 300;
}

.owner-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 25px;
    font-style: italic;
}

.owner-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}


.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8c8d4 0%, #f5b2c4 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 30px;
    font-weight: 300;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.product-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .header-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .owner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .owner-image {
        flex: none;
        max-width: 250px;
    }
    
    .owner-info h2 {
        font-size: 1.8rem;
    }
    
    .owner-description {
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 40px 0;
    }
    
    .owner-section,
    .offer-section {
        padding: 50px 0;
    }
}
/* === NAVIGATION BAR === */
.sticky-nav {
    background-color: #f7f2b7;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ccc;
}

.nav-logo {
    width: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.navbar {
    list-style: none;
    justify-content: space-between;
    display: flex;
    gap: 30px;
    padding-right: 75px;
    margin: 0;
    font-size: 20px;
}

.navbar li {
    display: flex;
}

.navbar li a {
    text-decoration: none;
    color: #231955;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 16px;
    transition: 0.3s;
}

.navbar li a:hover {
    color: #ff6b6b;
    border-bottom: 2px solid #ff6b6b;
}

.dropbtn {
    border: none;
    background-color: #f7f2b7;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.3s;
}

.dropdown {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #231955;
}

.dropdownContent {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdownContent a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdownContent a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdownContent {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #ff6b6b;
    border-bottom: 2px solid #0073e6;
}

.social-icons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons i,
.user-icons i {
    font-size: 28px;
    color: #333;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.social-icons a,
.user-icons a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.phone-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.phone-number {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.social-icons i:hover,
.user-icons i:hover {
    transform: scale(1.1);
    color: #007bff;
}

.fa-facebook:hover {
    color: #1877f2;
}

.fa-square-instagram:hover {
    color: #e4405f;
}

.fa-phone:hover {
    color: #28a745;
}

.fa-cart-shopping:hover {
    color: #ffc107;
}

.fa-circle-user:hover {
    color: #6f42c1;
}

@media (max-width: 768px) {
    .social-icons-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 3%;
    }
    
    .social-icons,
    .user-icons {
        gap: 20px;
    }
    
    .phone-number {
        font-size: 14px;
    }
    
    .social-icons i,
    .user-icons i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .phone-number {
        display: none;
    }
    
    .social-icons,
    .user-icons {
        gap: 15px;
    }
}

.menu-toggle {
    display: none;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    background: #231955;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    border-radius: 5px;
}

.account-dropdown {
    position: center;
    display: inline-block;
    cursor: pointer;
}

.account-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.account-dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.account-dropdown-content a:hover {
    background-color: #f1f1f1;
}

.account-dropdown:hover .account-dropdown-content {
    display: block;
}

.account-dropdown .fa-circle-user {
    font-size: 20px;
    color: inherit;
    transition: color 0.3s ease;
}

.account-dropdown:hover .fa-circle-user {
    color: #007bff; 
}

/* Footer Styles */
.footer {
  background-color: #f7f2b7;  
  padding: 40px 20px 10px;
  margin-top: auto;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  position: relative;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-logo {
  flex: 1;
  min-width: 300px;
  margin-bottom: 20px;
  margin-right: 20px;  
}

.footer-logo img {
  width: 50px;  
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.footer-logo h3 {
  color: #e88e8e;  
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 2;
}

.links-column, .footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
  margin-left: 30px;
}

.links-column a, .footer-column a {
  color: #555;  
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.links-column a:hover, .footer-column a:hover {
  color: #e88e8e;  
}

nav {
    width: 100%;
    background-color: #f8f9fa;
    padding: 10px 0;
}

.social-icons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icon styling */
.social-icons i,
.user-icons i {
    font-size: 28px;
    color: #333;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.social-icons a,
.user-icons a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

/* Phone container styling */
.phone-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.phone-number {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

/* Hover effects */
.social-icons i:hover,
.user-icons i:hover {
    transform: scale(1.1);
    color: #007bff;
}

.fa-facebook:hover {
    color: #1877f2;
}

.fa-square-instagram:hover {
    color: #e4405f;
}

.fa-phone:hover {
    color: #28a745;
}

.fa-cart-shopping:hover {
    color: #ffc107;
}

.fa-circle-user:hover {
    color: #6f42c1;
}

.copyright {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 12px;
  color: #777;
}
.copyright {
  text-align: center;
  padding: 15px 0;
  font-size: 12px;
  color: #777;
  border-top: 1px solid #eee;
  margin-top: 20px;
}

/* Media Query for max-width 968px */
@media (max-width: 968px) {
  .footer-content {
      flex-direction: column;
      gap: 30px;
  }

  .footer-links {
      flex-wrap: wrap;
      gap: 30px;
  }
}

/* Media Query for max-width 768px */
@media (max-width: 768px) {
  /* Header Layout */
  .header {
      flex-direction: column;
      padding: 15px;
  }

  .header-right {
      margin-top: 15px;
  }

  .nav-menu {
      margin: 15px 0;
      flex-wrap: wrap;
      justify-content: center;
  }

  .social-icons-header {
      margin-bottom: 10px;
  }

  /* Footer Layout */
  .footer-container {
      flex-direction: column;
  }

  .footer-logo,
  .footer-column {
      min-width: 100%;
  }

  /* Navbar and Burger */
  .navbar {
      position: fixed;
      top: 0;
      left: -250px;
      width: 250px;
      height: 100%;
      background-color: #f7f2b7;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding: 200px 10px 10px;
      transition: left 0.3s ease;
      z-index: 1000;
      gap:10px
  }

  .menu-toggle:checked ~ .navbar {
      left: 0;
  }

  .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1001;
  }

  .menu-toggle:checked ~ .overlay {
      display: block;
  }

  .burger {
      display: flex;
      order: -1; /* Move burger to the left */
      margin-right: 20px;
      z-index: 1001;
  }

  .menu-toggle:checked ~ .burger span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle:checked ~ .burger span:nth-child(2) {
      opacity: 0;
  }

  .menu-toggle:checked ~ .burger span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
  }

  .sticky-nav {
      justify-content: space-between;
      align-items: center;
  }

  .logo-container {
      flex: 1;
      text-align: center;
  }

  /* Keep social icons visible on mobile */
  

  /* Cake Sizes Section */
  .cake-sizes {
      flex-direction: column;
      align-items: center;
  }

  /* Footer Links */
  .footer-links {
      flex-direction: column;
      gap: 20px;
  }
}
/* Notification Styles */
.notification-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.account-dropdown-content {
    min-width: 350px;
    max-width: 400px;
}

.notification-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.notification-header span {
    font-weight: 600;
    color: #333;
}

.mark-all-read {
    background: none;
    border: none;
    color: #d4757a;
    font-size: 12px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

.mark-all-read:hover {
    background: #f8f9fa;
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
}
.notification-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.notification-content {
    flex: 1;
    cursor: pointer;
}

.notification-item:hover {
    background: #f8f9fa;
}

.notification-item.unread {
    background: #fff8f0;
}

.notification-item.unread::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
}

.notification-message {
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.notification-time {
    font-size: 11px;
    color: #999;
}

.notification-order {
    font-size: 12px;
    color: #d4757a;
    font-weight: 600;
    margin-bottom: 3px;
}

.delete-notification-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
}

.delete-notification-btn:hover {
    transform: scale(1.1);
    color: #c0392b;
}

.no-notifications {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.account-links {
    padding-top: 10px;
}

.account-links a {
    display: block;
    padding: 10px 15px;
}